home *** CD-ROM | disk | FTP | other *** search
/ E.M.Computergraphic Phase 4 / Phase 4 - Desktop Video Dreams (E. M. Computergraphic)(1996).iso / utilities / multiplay / gmod / makefile < prev   
Makefile  |  1996-01-03  |  390b  |  16 lines

  1. # Makefile to compile DW_Convert with SAS/C
  2. # (Not an incredibly complicated procedure really)
  3.  
  4. DW_Convert: DW_Convert.o DW_GMOD.o
  5.     BLink from lib:c.o DW_Convert.o DW_GMOD.o to DW_Convert \
  6.         lib lib:lc.lib nodebug
  7.  
  8. DW_Convert.o: DW_Convert.c
  9.     LC $*
  10.  
  11. # I use the A68k assembler by Charlie Gibbs for everything, but other
  12. # assemblers should work too...
  13. DW_GMOD.o: DW_GMOD.asm
  14.     A68k $*.asm
  15.  
  16.